home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Planet Source Code Jumbo …e CD Visual Basic 1 to 7
/
3_2004-2005.ISO
/
Data
/
Zips
/
Transport_18194311182004.psc
/
Transport Automation System 1.0
/
authentication.frm
< prev
next >
Wrap
Text File
|
2004-10-17
|
6KB
|
187 lines
VERSION 5.00
Begin VB.Form authentication
Caption = "Authentication"
ClientHeight = 2835
ClientLeft = 60
ClientTop = 345
ClientWidth = 5295
BeginProperty Font
Name = "Verdana"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "authentication.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
Moveable = 0 'False
Picture = "authentication.frx":08CA
ScaleHeight = 2835
ScaleWidth = 5295
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command2
Caption = "&Cancel"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2640
TabIndex = 6
Top = 2040
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "&Login"
BeginProperty Font
Name = "Microsoft Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 5
Top = 2040
Width = 1215
End
Begin VB.TextBox Text2
Appearance = 0 'Flat
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
IMEMode = 3 'DISABLE
Left = 1800
PasswordChar = "0"
TabIndex = 2
Top = 1560
Width = 3135
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 1800
TabIndex = 0
Top = 1200
Width = 3135
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "Transport Automation System"
BeginProperty Font
Name = "Verdana"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 375
Left = 840
TabIndex = 4
Top = 240
Width = 3975
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "Password"
BeginProperty Font
Name = "Verdana"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 360
TabIndex = 3
Top = 1560
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "User Name"
BeginProperty Font
Name = "Verdana"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 360
TabIndex = 1
Top = 1200
Width = 1455
End
End
Attribute VB_Name = "authentication"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'ensrypt=1234 code
Dim u, p As String
Private Sub Command1_Click()
If StrComp(Text1.Text, u) = 0 And StrComp(Text2.Text, p) = 0 Then
Unload Me
main.Show
Else
MsgBox "Invalid User Name or Password"
Text2.Text = ""
Text2.SetFocus
End If
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Form_Load()
On Error Resume Next
Open App.Path & "\configtas.dll" For Input As #1
Input #1, u
Input #1, p
Close #1
u = Decrypt(1234, Trim(u))
p = Decrypt(1234, Trim(p))
If Err Then
MsgBox Err.Description
End If
End Sub